/** * This file was auto-generated by Fern from our API Definition. */ import * as Skyflow from "../../../../index"; /** * @example * { * vault_id: "f4b3b3b33b3b3b3b3b3b3b3b3b3b3b3b", * file: { * base64: "Zm9vYmFy", * data_format: "txt" * } * } */ export interface ReidentifyFileRequest { vault_id: Skyflow.VaultId; /** File to re-identify. Files are specified as Base64-encoded data or an EFS path. */ file: Skyflow.ReidentifyFileRequestFile; /** Mapping of preferred data formatting options to entity types. Returned values are dependent on the configuration of the vault storing the data and the permissions of the user or account making the request. */ format?: Skyflow.ReidentifyFileRequestFormat; }